1bashThis script finds all .swift files in the current directory and its subdirectories, then counts the total number of lines in those files.find . -name "*.swift" -print0 | xargs -0 wc -lsolutionslines of code counting in swift files